//Instructions:
//Create a function that takes an array of numbers and return both the minimum and maximum numbers, in that order.

using System;
using System.Linq;
public class Program 
{
    public static double[] FindMinMax(double[] values)
    {
      return new double[]{values.Min(), values.Max()};
    }
}
